home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsbasenet.h < prev    next >
C/C++ Source or Header  |  2005-02-05  |  6KB  |  182 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Basic net definitions                                  */
  34. /*       Used in .c and .h files that needs T_SOC and so        */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_DEFBASENETH
  39. #define HTS_DEFBASENETH
  40.  
  41. #if HTS_WIN
  42.  
  43. #if HTS_INET6==0
  44.  #include <winsock2.h>
  45. #else
  46.  
  47. #ifndef _WIN32_WCE
  48. #undef HTS_USESCOPEID
  49. #define WIN32_LEAN_AND_MEAN
  50. #include <winsock2.h>
  51. #include <ws2tcpip.h>
  52. #include <tpipv6.h>
  53. #else
  54.  #include <winsock2.h>
  55.  #include <socket.h>
  56. #endif
  57.  
  58. #endif
  59.  
  60. typedef SOCKET T_SOC;
  61.  typedef struct hostent FAR t_hostent;
  62.  
  63. #else
  64. #define HTS_USESCOPEID
  65.  #define INVALID_SOCKET -1
  66.  typedef int T_SOC;
  67.  typedef struct hostent t_hostent;
  68. #endif
  69.  
  70. #if HTS_USEOPENSSL
  71. /*
  72.    OpensSSL crypto routines by Eric Young (eay@cryptsoft.com)
  73.    Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  74.    All rights reserved
  75. */
  76. #ifndef HTS_OPENSSL_H_INCLUDED
  77. #define HTS_OPENSSL_H_INCLUDED
  78.  
  79. /*
  80. #include <openssl/ssl.h>
  81. #include <openssl/crypto.h>
  82. #include <openssl/err.h>
  83. */
  84.  
  85. /* Library internal definictions */
  86. #ifdef HTS_INTERNAL_BYTECODE
  87.  
  88. /* OpenSSL definitions */
  89. #define SSL_shutdown hts_ptrfunc_SSL_shutdown
  90. #define SSL_free hts_ptrfunc_SSL_free
  91. #define SSL_new hts_ptrfunc_SSL_new
  92. #define SSL_clear hts_ptrfunc_SSL_clear
  93. #define SSL_set_fd hts_ptrfunc_SSL_set_fd
  94. #define SSL_set_connect_state hts_ptrfunc_SSL_set_connect_state
  95. #define SSL_connect hts_ptrfunc_SSL_connect
  96. #define SSL_get_error hts_ptrfunc_SSL_get_error
  97. #define SSL_write hts_ptrfunc_SSL_write
  98. #define SSL_read hts_ptrfunc_SSL_read
  99. #define SSL_library_init hts_ptrfunc_SSL_library_init
  100. #define ERR_load_crypto_strings hts_ptrfunc_ERR_load_crypto_strings
  101. #define ERR_load_SSL_strings hts_ptrfunc_ERR_load_SSL_strings
  102. #define SSLv23_client_method hts_ptrfunc_SSLv23_client_method
  103. #define SSL_CTX_new hts_ptrfunc_SSL_CTX_new
  104. #define ERR_error_string hts_ptrfunc_ERR_error_string
  105. #define SSL_load_error_strings hts_ptrfunc_SSL_load_error_strings
  106. #define SSL_CTX_ctrl hts_ptrfunc_SSL_CTX_ctrl
  107.  
  108. #endif
  109.  
  110. /* */
  111. typedef void SSL_CTX;
  112. typedef void* SSL;
  113. typedef void SSL_METHOD;
  114. typedef int (*t_SSL_shutdown)(SSL *ssl);
  115. typedef void (*t_SSL_free)(SSL *ssl);
  116. typedef SSL (*t_SSL_new)(SSL_CTX *ctx);
  117. typedef int (*t_SSL_clear)(SSL *ssl);
  118. typedef int (*t_SSL_set_fd)(SSL *ssl, int fd);
  119. typedef void (*t_SSL_set_connect_state)(SSL *ssl);
  120. typedef int (*t_SSL_connect)(SSL *ssl);
  121. typedef int (*t_SSL_get_error)(SSL *ssl, int ret);
  122. typedef int (*t_SSL_write)(SSL *ssl, const void *buf, int num);
  123. typedef int (*t_SSL_read)(SSL *ssl, void *buf, int num);
  124. typedef int (*t_SSL_library_init)(void);
  125. typedef void (*t_ERR_load_crypto_strings)(void);
  126. typedef void (*t_ERR_load_SSL_strings)(void);
  127. typedef SSL_METHOD * (*t_SSLv23_client_method)(void);
  128. typedef SSL_CTX * (*t_SSL_CTX_new)(SSL_METHOD *method);
  129. typedef char * (*t_ERR_error_string)(unsigned long e, char *buf);
  130. typedef void (*t_SSL_load_error_strings)(void);
  131. typedef long (*t_SSL_CTX_ctrl)(SSL_CTX *ctx, int cmd, long larg, char *parg);
  132.  
  133. /* Library internal definictions */
  134. #ifdef HTS_INTERNAL_BYTECODE
  135.  
  136. extern int SSL_is_available;
  137. extern t_SSL_shutdown SSL_shutdown;
  138. extern t_SSL_free SSL_free;
  139. extern t_SSL_new SSL_new;
  140. extern t_SSL_clear SSL_clear;
  141. extern t_SSL_set_fd SSL_set_fd;
  142. extern t_SSL_set_connect_state SSL_set_connect_state;
  143. extern t_SSL_connect SSL_connect;
  144. extern t_SSL_get_error SSL_get_error;
  145. extern t_SSL_write SSL_write;
  146. extern t_SSL_read SSL_read;
  147. extern t_SSL_library_init SSL_library_init;
  148. extern t_ERR_load_crypto_strings ERR_load_crypto_strings;
  149. extern t_ERR_load_SSL_strings ERR_load_SSL_strings;
  150. extern t_SSLv23_client_method SSLv23_client_method;
  151. extern t_SSL_CTX_new SSL_CTX_new;
  152. extern t_ERR_error_string ERR_error_string;
  153. extern t_SSL_load_error_strings SSL_load_error_strings;
  154. extern t_SSL_CTX_ctrl SSL_CTX_ctrl;
  155.  
  156. #endif
  157.  
  158. /*
  159. From /usr/include/openssl/ssl.h
  160. */
  161. #define SSL_ERROR_NONE                  0
  162. #define SSL_ERROR_SSL                   1
  163. #define SSL_ERROR_WANT_READ             2
  164. #define SSL_ERROR_WANT_WRITE            3
  165. #define SSL_ERROR_WANT_X509_LOOKUP      4
  166. #define SSL_ERROR_SYSCALL               5 /* look at error stack/return value/errno */
  167. #define SSL_ERROR_ZERO_RETURN           6
  168. #define SSL_ERROR_WANT_CONNECT          7
  169. #define SSL_OP_ALL                                      0x000FFFFFL
  170. #define SSL_CTRL_OPTIONS                        32
  171. #define SSL_CTX_set_options(ctx,op) \
  172.         SSL_CTX_ctrl(ctx,SSL_CTRL_OPTIONS,op,NULL)
  173.  
  174. //#include <openssl/bio.h>
  175. /* OpenSSL structure */
  176. extern SSL_CTX *openssl_ctx;
  177.  
  178. #endif
  179. #endif
  180.  
  181. #endif
  182.